Important: Windows Users

In the next few lectures, lecture, I run multiple Go files at the same time on a Macintosh like this:

go run *.go

On Windows, though, this will not work unless you have customized your IDE or terminal. Instead, use this command:

go run .

(note the dot at the end of this command)

Thanks to Craig for pointing this out.